home *** CD-ROM | disk | FTP | other *** search
-
- if (document.layers)
- {
- document.captureEvents(Event.MOUSEMOVE);
- document.onmousemove = SynchScroll;
- }
-
- function SynchLeftScroll()
- {
- if (document.all)
- {
- // IE
- x= document.body.scrollLeft;
- y= document.body.scrollTop;
- }
-
- parent.leftpane.scrollTo(x,y);
- parent.toolbar_left.scrollTo(0,y);
-
- if (parent.toolbar_right != null)
- parent.toolbar_right.scrollTo(0,y);
- }
-
- function SynchRightScroll()
- {
- if (document.all)
- {
- // IE
- x= document.body.scrollLeft;
- y= document.body.scrollTop;
- }
-
- parent.rightpane.scrollTo(x,y);
- parent.toolbar_left.scrollTo(0,y);
-
- if (parent.toolbar_right != null)
- parent.toolbar_right.scrollTo(0,y);
- }
-